"What do you mean 'it's crappy and you have seen it before'?"
There are some specific things I do not like to see. These are mostly a matter of opinion, so don't take this as a gospel (like you ever would do that anyway :))
Scenes with an environment mapped thingamajic in the center and many whatchamacallits rotating and circling it
These tend to be boring and crummy, especially if they're made by beginners (harshly said, but it's unfortunately true). If you want to show off your coding and math abilities with cool isosurfaces, morphing objects, shading models etc, then by all means go for it, but if you just have a blob inside a cube, please reconsider. If you absolutely have to have an effect like this, have your graphician model the room instead of doing it in the code and put something moving in it. Flares, lines, polygons, pictures, anything, as long as it keeps the scene from being sleepy and static.
Showing things again
Having a recurring theme is generally a good thing. Recycling effects is not. For example, if your graphical design is based on spline curves, use as much splines as you want and give the demo a feeling of continuity. But if you have a cube with a blob inside it or something equivalent, it has to be something really good if the viewer wants to see it again during the intro. If you are short on effects and the deadline is looming, then at least add something to it for the second showing.
Scenepoetry
If you're a talented writer, then by all means write your deep and important lyrics and thoughts and put them into your production. But if you're not, either borrow appropriate lyrics from somewhere or shut up ;)
To show how bad it can be, here's an two actual example from a real productions:
"try to seize us
you'll never get that again
just one attempt
clear in mind
paranoid
lunatic
just over us
trippin'
split away just now
here and now"
umm... okay?
and
"Death swallops
our blood up
Ancestors
coulden't forsee
the collapse
body destroyed
soul quite burnt
remain
immagination only"
Come again? If you absolutely must write your bad poetry on your production, please at least run it through a spellchecker.
I've sometimes wondered if it would be cool to write a scenepoetry generator and use it in productions. No need to think of anything to say and you could even make it blurt out different things every time you run it :) There is an intro that has one, p0etry by the Austrian group 0x7a69.au, released at Asm'2k. Check it out to see what kind of texts are BAD.
Jaggies
Now that it's 2003 and we've all gotten used to hardware accelerated polygons, it might beuseful to take a small trip down the memory lane. Go find yourself a demo with 3d-graphics from the 1994-1998 era and run it. Those non-filtered polygons look horrible, don't they? Good thing that with all the hardware-acceleration nowadays, we don't have to worry about things looking like that ever again... right? right?
Unfortunately, no. As far as I know, most hardware accelerators do not support anti-aliased polygons, but so far I haven't seen a single (modern) one that wouldn't support anti-aliased lines. Why is it that I still keep seeing rough, regular lines in demos? Perhaps there's a cool artistic design element in it, but I seriously doubt it (or I'm too stupid to understand it). Therefore, let me present a short snippet of code that will make your lines look good:
glHint(GL_LINE_SMOOTH_HINT, GL_NICEST);
//tell openGL you want nice-looking lines instead of fast ones. The
//specifics depend on hardware and driver
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
//use GL_ONE if you want additive color
glEnable(GL_LINE_SMOOTH);
//this here is the magic bit
glEnable(GL_BLEND);
//AA-lines don't work unless blending is turned on
glDisable(GL_TEXTURE_2D);
//just plain white lines, thank you.
glColor4f(1,1,1, alphavalue);
//be sure to specify the alpha value
glBegin(GL_LINES);
glVertex3f(vertex1.x, vertex1.y, vertex1.z);
//should use glVertex3fv() really, or a vertex buffer
glVertex3f(vertex2.x, vertex2.y, vertex2.z);
glEnd();
You may use rip'n'paste this without crediting me. In fact, I insist you do just that. I don't know anything about Direct3D but I doubt it's much harder there. Just remember that drawing AA-lines is slower than drawing regular ones, so if you have a huge amount of lines (let's say you're coding one of those cool hair simulation thingies), use your own judgment.
For a prime example of hideously ugly lines, check out AND's otherwise magnificent Asm'03 introcompo winner Zoom 3. Those green lines are quite... unattractive, wouldn't you say?
Lines are not the only place you need to worry about rough edges and aliasing. Let's assume you have a picture on top of your effect. If there's a lot of contrast, you can easily see the jagged edge. The solution to this is to use the alpha channel, make the transition smooth and then draw the image using blending. Talk to your artist.
Scaling artifacts
Please do not zoom too close to things. Especially if you've got something like a 160x100 logo, do not try to fill the entire screen with it. No amount of mipmapping or praying or magic will save you from the filtering effects and usually they will look bad. Repeat after me, please. They will look bad. Regarding text writers, using vector fonts will solve this problem easily.
Also, note that in general thing tend to look better in "even" scales. Suppose that you have a 64x64 picture and you want to draw it on the screen in a little bigger form. It will look better in 96x96 than 77x77. Modern bilinear filtering brings a huge improvement on this, so it's not as important as it used to be, but still keep this in mind.
Broken flares
These are surprisingly common. Watch your demo in a dark room with a lot of brightness on the monitor and you might find out that your flares are not actually flares but blocks. If the color value on the edges of your flare image is not zero, you get ugly borders in certain lighting conditions. This is simple to fix though (and don't forget to spank your GFX man for supplying you with bad images). And while you're at it, you could perhaps reconsider whether to have flares at all. They can be cool, but they're WAY overused nowadays. If you absolutely need to have flares, consider animating them from polygons or lines instead of using static bitmaps. To keep them fast, use a low-resolution texture like 64x64, 32x32 or even 16x16. If they're moving, nobody will be able to tell the difference.
Blocky movement
When you design your camera paths, you should make sure they are smooth. Simple linear interpolation from point A to point B along a straight line generally looks terrible, but still you can see it in many productions. Learn to use splines or bezier curves, they are not that difficult to master and you don't need to understand their mathematics to use them (though it obviously helps). If you're programming in OpenGL, meet your new friend gluLookAt().
A tip: You can smooth out movement by using sines and cosines. For example, if you have a linear interpolation value that goes from 0 to 1, you can do this:
float newval = sin(interpolation_value * pi * 0.5f).
That gives you a nice smooth curve of motion, without jerky movement at the start or the end. If it still doesn't look good, use sin squared or cubed, or try multiplying them by different coefficients.
And, no matter what some out-of-date tutorials might tell you, do NOT use sine/cosine tables. Unless you're doing something completely insane, modern computers are fast enough to calculate them in real time and the accuracy will be much better (the movement much smoother).
Clipping planes
You do know what's a clipping plane, don't you? If you don't, let me tell you. They are planes in the 3d-space that define the area you see. You either have five (front, left, right, top, down) or six (those five + the back plane). Now, if you define them poorly, bits of your objects might be disappearing into thin air. It looks bad. Pay special attention to the front clipping plane.
Camera movements
Don't move the camera through objects unless it's intentional. If you have a floor in a scene, be sure not to move the camera under the floor. Keep it far enough from objects to avoid ugly clipping bugs (see above). And remember that if you have ugly "features" in your scene or objects, you can avoid them by not looking at them. Cheating? Perhaps. So?
Crappy rotations
If you're doing an object-show, you probably have something like this:
for (i=0;i
Beware the dreaded 1,1,1 rotation. It's stale, static and an experienced coder can pick it a mile away. Use sinewaves, use decimal numbers, use anything as long as it's not 1, 1, 1. And attach your rotation to the timer. Even if your code is slow, it will be too fast somewhere and therefore look totally crap.
Mind the framerate
This is a personal opinion of mine, but I prefer simpler effects with decent framerate to CPU-hogging parts that run 3 FPS. The "it'll run fine on the compo machine"-mindset is popular nowadays and it's true that processing power is really cheap, but still at least try to optimize your code. Writing hand-crafted assembly code is usually not needed nowadays, so all you need to do is think. Here are some optimization tips (they could fill a whole Hugis worth of articles so I'll just give you the general idea):
1) Think and plan before you code.
2) Don't calculate same things more than once unless they're trivial. Using huge tables for precalcs may kill the cache though, so sometimes recalculating stuff is faster. Test it out and profile your code.
3) The fact that you've got a hardware ZBuffer doesn't mean that it's not worth doing depth sorting, backface culling and all those things your mother told you about. Quake 3 doesn't throw the entire two-million poly scene to the hardware to be sorted, and neither should you.
4) Algorithmical optimization is better than optimization in code. Even if you have the best possible cache-optimized SSE2-using pure assembly bubble sort, it's still going to suck compared to a first draft of a quicksort written in Visual Basic.
5) Remember that you're writing a demo, not a science project. Writing unmaintainable code is not a good thing and you really need to care about bugs, but reusability shouldn't be the top issue. As KB said in his excellent article, if you're writing a rotozoomer, then write a rotozoomer and not a texturemapper.
6) Learn how things work. By things I mean Windows, cache, the basic algorithms used by the 3d hardware, the mathematics used to build projection matrices etc. Knowing those will help you write efficient code. Even though hardware acceleration is the norm today, learn software coding too. It's fun, different and often very rewarding. Take a tour into Photoshop and try to compose a module or a mp3. Even though they might be quite awful knowing things in general will make it easier to tell your artists what you need.
7) Use vertex buffers and triangle strips whenever possible. Avoid doing redundant state changes and other communication with the 3d hardware.
8) Code also non-demo things like small utilities and games. They will broaden your perspective.
9) Don't be afraid to ask for help. There are arrogant people who will laugh at you and/or insult you, but there are also helpful people who like sharing knowledge.
10) Think and plan before you code.
If you're inexperienced or just a beginner, don't mind too much about all this. It'll come to you eventually. The main thing is that you feel good about the stuff you're coding.
"Art"
There is no good way of saying this so I'll be blunt: Putting random weird things on top of your effect does NOT make your demo into a wonderful piece of modern art. It may keep the viewer occupied enough not to notice how crappy your effect really is, but in that case you are better off scrapping the effect altogether. Now, I'm not saying that visual add-ons aren't good, because they're often vital to a good demo design, but try to make them match the effect visually. Ask your artist, he knows what I'm talking about if he's worth his pay.
The Canonical and Correct and Therefore Very Holy List of Things That Are Not Effects
- Cheap run-of-the-mill radial blur
- Simple metaballs
- Simple grid-based plasmadistortionwobblerthingies, FD-tunnels and FD-planes
- Envymapped balls with a plasmas mapped on them
- Rotating 3D-objects made of flares
- Splines and other curves made of flares
- Cheap overlays
- Static wireframe objects
- Alpha blending
- Anything featured in any NeHe tutorial
Because these are not effects, they should be used only in conjunction with things that are effects. I know it's a great feeling to get your own version of a routine made by some famous scener running for the first time, but try to be original. Try to modify the routine, make it different, make it into something that's never been seen before. It's really not that difficult.
This could be put into one sentence: "If you can't do it better, why do it at all?". I think that this is a bit harsh though, as doing basic effects gives you knowledge and experience to do better ones and the basic effects are often usable in their own right, if you recognize the fact that they are just that: basic effects.